home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Java Certification Exam Guide
/
McGrawwHill-JavaCertificationExamGuide.iso
/
pc
/
Web Links and Code
/
rev
/
chap8
/
q8.java
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Source
|
1997-05-08
|
327 b
|
18 lines
class C extends B {
public static void main(String[] args) {
C c = new C();
c.test(args);
}
void method(String s) throws AnotherException {
if (s.equals("yes"))
throw new AnotherException();
else
return;
}
}
class AnotherException extends Exception {
}